home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / Resources / 00186_Install7.ls < prev    next >
Encoding:
Text File  |  2000-11-10  |  546 b   |  22 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   member("Install").foreColor = 70
  4.   put "Click to install this software title to your hard drive" into member "InfoField"
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(0)
  9.   member("Install").foreColor = 255
  10.   put EMPTY into member "InfoField"
  11. end
  12.  
  13. on mouseUp
  14.   if the platform contains "Windows" then
  15.     open(the moviePath & "PCSoftware\Shockwave Flash Installer\Shockwave_Installer_Full.exe")
  16.   else
  17.     if the platform contains "Macintosh" then
  18.       open(the moviePath & "MacSoftware:Shockwave Installer")
  19.     end if
  20.   end if
  21. end
  22.